#!/bin/bash

echo "Task 1 von 2 - Erstelle jetzt die Verzeichnisse in ~/linux1...";
mkdir ~/linux1
cd ~/linux1
mkdir dir1
mkdir dir2
mkdir dir3
mkdir dir4
mkdir dir5
mkdir dir6

echo "Task 2 von 2 - Erstelle jetzt die Dateien in ~/linux1...";
cd ~/linux1
cd dir1
touch Brief_Anna.txt
touch Strandbild.png
touch Reisekosten.xlsx
touch Hotel.docx

cd ~/linux1
cd dir2
touch Barbara_Adresse.txt
touch Bali_Broschuere.pdf
touch Urlaubsbild.jpg
touch Rechnung.txt
touch Dokumente.pdf

cd ~/linux1
cd dir3
touch Glueckwunsch.jpg
touch Grusskarte.docx
touch Alibaba.jpg

cd ~/linux1
cd dir4
touch Farbenpalette.png
touch Bergbahn.pdf
touch Bergbahn_Text.txt
touch Tuecher.jpg

cd ~/linux1
cd dir5
touch Herbert_Email.txt
touch Bankverbindung.png

cd ~/linux1
cd dir6
touch Bankdaten.txt
touch Bergstraße.png
touch Fahrzeugdaten.pdf
touch Goldbarren_Gewicht.txt
touch Herbstferien.xlsx
touch Clubabend.jpg
touch Elternbrief.docx
touch Bahnverbindungen.txt

echo "Jetzt kann's losgehen!";
